home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20010306-20010921 / 000147_jaltman@watsun.cc.columbia.edu_Fri May 18 10:10:26 EDT 2001.msg < prev    next >
Text File  |  2020-01-01  |  2KB  |  45 lines

  1. Article: 12443 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!watsun.cc.columbia.edu!jaltman
  3. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Re: ? Script for retrieving from POP3 server
  6. Date: 18 May 2001 12:37:08 GMT
  7. Organization: Columbia University
  8. Lines: 28
  9. Message-ID: <9e351k$maj$1@newsmaster.cc.columbia.edu>
  10. References: <3B006553.C1470406@value.net> <3b006d83$0$322$8eec23a@newsreader.tycho.net> <3B0086D3.1E8D6F90@value.net> <MPG.156e9a569debacb498968f@news.bellatlantic.net>
  11. NNTP-Posting-Host: watsun.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 990189428 22867 128.59.39.2 (18 May 2001 12:37:08 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 18 May 2001 12:37:08 GMT
  15. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:12443
  16.  
  17. In article <MPG.156e9a569debacb498968f@news.bellatlantic.net>,
  18. John Santos  <john.santos@post.harvard.edu> wrote:
  19. : At my company, we used to use Kermit to connect to the SMTP server and
  20. : send mail, so talking to the POP3 server should be possible.  I don't
  21. : have any special hints to offer except that it would probably be
  22. : necessary to turn off telnet option negotiations ("set telnet wait off"
  23. : in Kermit, IIRC), and to careful check for errors after each and every
  24. : command in your Kermit script and have it do something reasonable.
  25.  
  26. When using C-Kermit to connect to a service that is not using telnet
  27. protocol, the connection should be made using a raw socket
  28.  
  29.   SET HOST host port /RAW-SOCKET
  30.  
  31. /RAW-SOCKET is an example of a protocol.  Another protocol that can
  32. be used with NVT based services is /NO-TELNET-INIT which means use
  33. Telnet protocol but do not initiate any telnet negotiations.  
  34.  
  35. SET TELNET WAIT OFF is something that should be used only when
  36. communicating with a broken Telnet Server when you do not want to
  37. spend the time to determine which of the telnet options it implements
  38. improperly.  When SET TELNET WAIT OFF is used, telnet negotiations are
  39. initiated which may be treated as garbage by the service.
  40.  
  41.  Jeffrey Altman * Sr.Software Designer      C-Kermit 7.1 Alpha available
  42.  The Kermit Project @ Columbia University   includes Secure Telnet and FTP
  43.  http://www.kermit-project.org/             using Kerberos, SRP, and 
  44.  kermit-support@kermit-project.org          OpenSSL.  SSH soon to follow.
  45.